home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C++ / Games / Chess++ 3.0.1 / source / CChessInfoPane.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-25  |  566 b   |  22 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  CChessInfoPane.h
  3.  
  4.         Interface for the CChessInfoPane Class
  5.         
  6.         Copyright © 1993 Steven J. Bushell. All rights reserved.
  7.  
  8.  ******************************************************************************/
  9.  
  10. #define _H_CChessInfoPane
  11.  
  12. #include "CPane.h"                        /* Interface for its superclass        */
  13.  
  14. class CChessInfoPane : public CPane {            /* Class Declaration                */
  15.  
  16. public:
  17.                                 /** Instance Variables **/
  18.     short            infoString;
  19.  
  20.                                     /** Drawing **/
  21.     virtual void    Draw(Rect *area);
  22. };